home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / bc_pas_1.zip / MVINIT < prev    next >
Text File  |  1992-06-15  |  621b  |  19 lines

  1. #
  2. # Build file for creating the MVINIT program
  3. #
  4. AS   = /Mx             ### make file ASSEMBLER permenant switches
  5. CS   = /c /Ox /Zp1         ### make file COMPILER permenant switches
  6. LS   =                 ### make file LINKER permenant switches
  7. AO   =       /DMODELSIZE=1     ### make file ASSEMBLER command line switches
  8. CO   =       /AS             ### make file COMPILER command line switches
  9. LO   =                 ### make file LINKER command line switches
  10. INC  = \PAS\INC
  11. GINC = \INC
  12.  
  13. mvinit.obj: mvinit.c $(INC)\pcmio.h $(INC)\mixers.h $(INC)\common.h
  14.     cl $(CS) $(CO) mvinit.c
  15.  
  16. mvinit.exe: mvinit.obj
  17.     link $(LS) $(LO) mvinit,,,mvslib+mvhslib;
  18.  
  19.